Integrate fiddler with Flex technology - flex3

How can I integrate fiddler with Flex 3? Flex uses - AMF protocol to exchange messages.
Can someone please help me in integrating Fiddler with Flex technology?

I don't really know what you mean by "integrate", but Fiddler should see your Flex traffic just fine. A community member has written an Inspector object for the AMF format; he's posted the archive in the Files section of the Fiddler Google Group: http://groups.google.com/group/httpfiddler

You can download an inspector plugin for AMF from http://amfparser.codeplex.com/.
Just download the dll, put it into Fiddlers "Inspectors" folder and restart Fiddler. Now you should have a new "AMF" view within the inspectors view.

I tried to use Fiddler 4 with amf parser but no success it was showing all garbage data. I found Charles Proxy similar to Fiddler but not that advanced but it has great amf support and i was able to see all the requested response properly.
https://www.charlesproxy.com/

Related

Send images through Worklight server without base64 encoding

I want to upload image through worklight adapter in case of desktop browser and for IOS, android devices also, could you please suggest how we can post image through adapter. I find some example to post image as base 64 object.
Please provide me any reference by which we can upload image as multipart form data.
You cannot do this using JavaScript adapters in Worklight. You could perhaps do this using Cordova or AJAX, but I'm pretty sure you should use base64 encoding there as well.
The only other possibility for you to send binary is by using Java adapters.
Java adapters were introduced starting MobileFirst Platform (previously "Worklight") 7.0.
You can learn about Java adapters (basically a JAX-RS application), here: https://developer.ibm.com/mobilefirstplatform/documentation/getting-started-7-0/server-side-development/adapter-framework-overview/

Social Business Toolkit: Sametime chat only with local installed Sametime Client possible?

I'm using SBT SDK on a XPage.
After mastering a few traps at the beginning it works fine.
Livenames are properly displayed.
But now a got another problem.
If you click on a available person, a context menu is displayed, where you can choose 'CHAT' or 'VCARD'.
If I click on CHAT a URL like this ist called:
http://localhost:59449/stwebapi/loggedin?jsonp=stproxy.connect.callback.setAvailable&wait=true&time=1407834968761&fqdn=sametime.lotus.com
I found out that you have to install Sametime Connect Client locally at every computer, because it is providing a small webserver at port 59449.
That's impossible because I want to use Sametime on a public website.
I'm pretty sure that there is another way.
Somebody an idea?
thanks
Marcus
#user2776693 - There are two ways:
1 - using the Sametime Local Web API
The local web api uses a configurable port (the default is mentioned above), to communicate back and forth from a web site which embeds or calls the configurable port using jsonp, meaning the javascript of the site wraps the sametime calls.
2 - using the Sametime Web Chat/Web Proxy
It means that the Sametime Web Chat is embedded as JavaScript on the page, and loaded using the appropriate JS libraries, and can have some pretty advanced features. There is a demo site off of greenhouse.lotus.com, and you can sign up for an account on that site.
you can download the sdk, and find many examples of using the local web api and web chat.
http://www14.software.ibm.com/webapp/download/nochargesearch.jsp?q0=&k=ALL&S_TACT=104CBW71&status=Active&b=Lotus&sr=1&q=sametime+sdk&ibm-search=Search
Download Version 9.0 IFR1
Extract with Zip
Go to Examples and samples

Is it at all possible to make HTTP requests with the Adobe Photoshop JS SDK?

I've been looking at the Adobe Photoshop JavaScript Scripting documentation, and have only seen the use of WebSockets for remote communications. I need to implement a plugin that communicates with a backend PHP API written in Laravel.
Does the Photoshop JavaScript SDK allow HTTP requests at all?
I use a modified version of the extendables library to allow Indesign to access data from our local webserver. I don't see any reason why it wouldn't work with photoshop. See extendables.org for the library.
ETA: That link doesn't seem to go anywhere at the moment. The library itself is available here: https://github.com/stdbrouw/Extendables

Is it possible to upload/publish an unlisted extension via the chrome webstore api?

We are hoping to upload a chrome extension and publish it as unlisted (as the visibility option) via the Chrome Webstore Api.
So far we have been able to upload but not publish using this documentation -- we can't publish because extensions have a whole bunch of required parameters (like a screenshot or small-tile image) which we can't figure out how to attach. We are really hoping that one of these parameters will be visibility, and we can set it to "unlisted".
If any kind soul has any knowledge of the Chrome Webstore API, or how to set these parameters, our whole development team would be very appreciative.
The documentation on this is very sparse: https://developer.chrome.com/webstore/webstore_api/items/update
Quoting Using the Chrome Web Store Publish API:
Note: Currently, there is no API for setting an item’s metadata, such as description. This has to be done manually in the Chrome Web Store Developer Dashboard. More detail about the Web Store API can be found here.
So, to the question whether you can supply all the metadata programmatically - the answer is "no". And the Publish method does not seem to support "unlisted".

Programmatically communicate with charles proxy server HTTP request and response

I am trying to develop an app which monitors data plan usage of other apps. As per the link
iPhone/iPad data usage tracking , I set up the proxy server Charles. Now I can see all the http request/responses of iPhone network traffic in charles. Now I need to write an app that can inspect the HTTP headers of these charles request/responses. How to do this programmatically in IOS(objective-C)? Please help!
I cannot add this as a comment (need 50 rep), and I understand that's it may not be exactly what you're looking for, but is the only way I have found to access sessions programatically.
You could write an app that utilises the Web Interface. I use it whilst running tests against my app to retrieve the session activity, then make assertions against the downloaded information retrospectively. Hope that helps.