User superfell - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T04:41:03Zhttp://stackoverflow.com/feeds/user/41455http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1507386/how-to-specify-xsd-element-has-sub-tag-or-simple-content-but-not-both/1507819#15078190Answer by superfell for How to specify (XSD) element has sub tag or simple content - but not bothsuperfell2009-10-02T05:11:55Z2009-10-02T05:11:55Z<p>These types of restrictions aren't possible to describe in XSD, you'll need to use another language to model them, e.g. schematron.</p>
http://stackoverflow.com/questions/1507718/how-do-i-detect-the-environment-in-salesforce/1507803#15078031Answer by superfell for How do I detect the environment in Salesforce?superfell2009-10-02T05:04:18Z2009-10-02T05:04:18Z<p>The Login API call returns a sandbox element in the returned LoginResult structure that indicates if its a sandbox environment or not, from the WSDL.</p>
<pre><code> <complexType name="LoginResult">
<sequence>
<element name="metadataServerUrl" type="xsd:string" nillable="true"/>
<element name="passwordExpired" type="xsd:boolean" />
<element name="sandbox" type="xsd:boolean"/>
<element name="serverUrl" type="xsd:string" nillable="true"/>
<element name="sessionId" type="xsd:string" nillable="true"/>
<element name="userId" type="tns:ID" nillable="true"/>
<element name="userInfo" type="tns:GetUserInfoResult" minOccurs="0"/>
</sequence>
</complexType>
</code></pre>
http://stackoverflow.com/questions/1123503/problems-consuming-webservice-on-asp-net-on-productioniis-server/1161767#11617671Answer by superfell for Problems consuming webservice on ASP.NET on production(IIS) serversuperfell2009-07-21T21:07:38Z2009-07-21T21:07:38Z<p>The Web Service client stack in .NET does runtime generation of the proxy client (from the annotations in the class generated by wsdl.exe/svcutil.exe). this generated file typically ends up in one of your servers temp directories (there's one under the main windows tree somewhere). The problem is that the ASP.NET user account doesn't have rights to write to this particular temp directory, but doesn't notice at the time it writes the file, so you end up with an error with it trying to load the generated file back. You can end up in the situation depending on the exact installation order on your server. Once you find the right directory you can simply fix the NTFS perms on the directory to solve the problem.</p>
http://stackoverflow.com/questions/247607/how-do-i-trap-ocunit-test-pass-failure-messages-events/329674#3296744Answer by superfell for How do I trap OCUnit test pass/failure messages/events.superfell2008-12-01T00:25:34Z2009-07-10T16:53:05Z<p>You can write your own observer by extending the SenTestObserver class and implementing the notification listeners</p>
<ul>
<li>(void) testSuiteDidStart:(NSNotification *) aNotification</li>
<li>(void) testSuiteDidStop:(NSNotification *) aNotification</li>
<li>(void) testCaseDidStart:(NSNotification *) aNotification</li>
<li>(void) testCaseDidStop:(NSNotification *) aNotification</li>
<li>(void) testCaseDidFail:(NSNotification *) aNotification</li>
</ul>
<p>Then add a "<code>SenTestObserverClass</code>" entry to the Info.plist with the name of your class.</p>
<p>At least in the version of OCUnit I'm familiar with, SenTestObserver is equal parts useful/broken. I just skip it altogether and register for the notifications myself in my own class. (See SenTestSuiteRun.h and SenTestCaseRun.h for the defines of the notification names).</p>
<p>You can use the test and run properties of the notification to access the SenTestSuite and SenTestSuiteRun instances, and the run instance contains the info needed on the actual results.</p>
http://stackoverflow.com/questions/849089/secret-key-authentication-in-salesforce-com/858951#8589512Answer by superfell for Secret key authentication in salesforce.comsuperfell2009-05-13T16:24:43Z2009-05-13T16:24:43Z<p>Rather than trying to track it on the salesforce side, have the salesforce side send the users sessionId to your webservice, you can then use the API to validate that sessionId get details about the user, and check locally that the particular user/organization is licensed. There's some articles on the developerforce wiki about using this approach.</p>
http://stackoverflow.com/questions/343991/windows-service-shut-down/347770#3477700Answer by superfell for Windows service shut downsuperfell2008-12-07T16:47:54Z2008-12-07T16:47:54Z<p>You probably want to use the ControlService or <a href="http://msdn.microsoft.com/en-us/library/ms682110(VS.85).aspx" rel="nofollow">ControlServiceEx</a> methods to shutdown your service. You should be able to get the required handle from the CServiceModule.</p>
http://stackoverflow.com/questions/331996/inserting-and-deleting-uitableviewcell-at-the-same-time-not-working/333053#3330530Answer by superfell for Inserting and deleting UITableViewCell at the same time not workingsuperfell2008-12-02T04:25:00Z2008-12-02T04:25:00Z<p>I seem to remember that numberOfRowsInSection: will get called when you call deleteRows or insertRow, you need to be really careful that the reality numberOfRowsInSection cliams matches your changes. In this case you may want to try moving the iSelectedSection = [indexPath section]; line to after the endUpdates.</p>
http://stackoverflow.com/questions/304994/labeling-web-service-endpoints/332945#3329450Answer by superfell for Labeling Web Service endpointssuperfell2008-12-02T03:25:23Z2008-12-02T03:25:23Z<p>I would include a version number in the URLs. </p>
http://stackoverflow.com/questions/330074/problem-in-parsing-plist-file/330083#330083-1Answer by superfell for Problem in parsing .plist file.superfell2008-12-01T05:09:07Z2008-12-01T05:09:07Z<p>Are you generating the file with <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSArray_Class/Reference/Reference.html#//apple_ref/occ/instm/NSArray/writeToFile:atomically:" rel="nofollow">writeToFile:atomically</a>: ? do you check that this returns true?</p>
http://stackoverflow.com/questions/330060/problem-using-nsurlrequest-to-post-data-to-server/330064#3300646Answer by superfell for Problem using NSURLRequest to POST data to serversuperfell2008-12-01T04:47:49Z2008-12-01T05:06:05Z<p>You should remove the leading & in the myRequestString, and the problem is likely that the correct content-type header is not being sent. try adding a call to</p>
<pre><code>[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"content-type"];
</code></pre>
<p>You should also not pass nil for error, so you can see what the client thinks is going on.</p>
<p>Unrelated, but your PHP code is open to <a href="http://en.wikipedia.org/wiki/SQL_injection" rel="nofollow">sql injection attacks</a>.</p>
http://stackoverflow.com/questions/328277/nstableview-setdatasource-not-working-when-triggered-by-fsevents/329614#3296141Answer by superfell for NSTableView -setDataSource not working when triggered by FSEventssuperfell2008-11-30T23:43:04Z2008-11-30T23:43:04Z<p>sounds like when you register for the event/notification, you're passing in a different instance of your controller class.</p>
http://stackoverflow.com/questions/201841/how-do-i-configure-email-notification-on-new-case-comment-in-salesforce-com/329536#3295361Answer by superfell for How do I configure email notification on new case comment in salesforce.com?superfell2008-11-30T22:44:51Z2008-11-30T22:44:51Z<p>Wow, you're trying way to hard. Goto Setup -> App Setup -> Cases -> Support Settings and enable the "Notify Case Owner of New Case Comments" option.</p>
http://stackoverflow.com/questions/329511/preserving-application-state-across-restarts/329533#3295331Answer by superfell for Preserving application state across restartssuperfell2008-11-30T22:41:13Z2008-11-30T22:41:13Z<p>I was never able to get this approach to work either. What i eneded with was having my own protocol, and having each viewcontroller to be to save/restore the metadata needed for that view (you don't need to save the image data for example, just the name of the image). Once you have that, its fairly easy to write some generic code to walk the navigation controllers (+stacks) and save/restore the entire set of data. sounds like a lot of work, but was actually pretty easy.</p>
http://stackoverflow.com/questions/305029/deserialize-soap-array-in-c/324596#3245960Answer by superfell for Deserialize SOAP array in C#superfell2008-11-27T20:22:47Z2008-11-27T20:28:19Z<p>That SOAP array is an rpc/encoded response, you'll need to make sure you're setting all the attributes on your client class/methods so that the stack knows its handling an rpc/encoded response. (the Use=...Literal is definitely wrong).</p>
<p>What does your c# definition of ComplexType look like? You probably need to set the type namespace on it, e.g. [System.Xml.Serialization.SoapTypeAttribute(Namespace="http://soapinterop.org/xsd")]</p>
http://stackoverflow.com/questions/324470/http-headers-encoding-decoding-in-java/324558#3245582Answer by superfell for HTTP headers encoding/decoding in Javasuperfell2008-11-27T19:54:13Z2008-11-27T19:54:13Z<p>See the <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec2.html#sec2" rel="nofollow">HTTP spec</a> for the rules, which says in section 2.2 </p>
<blockquote>
<p>The TEXT rule is only used for descriptive field contents and values that are not intended to be interpreted by the message parser. Words of *TEXT MAY contain characters from character sets other than ISO- 8859-1 [22] only when encoded according to the rules of RFC 2047 [14].</p>
</blockquote>
<p>The above code will not correctly decode an RFC2047 encoding string, leading me to believe that the service doesn't correctly follow the spec, and they just embeding raw utf-8 data in the header.</p>
http://stackoverflow.com/questions/242962/can-xfire-soap-server-send-http-301-redirect-to-client/324541#3245410Answer by superfell for Can XFire SOAP server send HTTP 301 REDIRECT to client?superfell2008-11-27T19:43:42Z2008-11-27T19:43:42Z<p>Many soap clients won't follow redirects because you're not supposed to follow redirects on POSTs without confirmation from the user. (and all SOAP requests are POST)</p>
http://stackoverflow.com/questions/290172/calculating-soap-content-length/324536#3245361Answer by superfell for Calculating SOAP Content-Lengthsuperfell2008-11-27T19:39:47Z2008-11-27T19:39:47Z<p>Its the number of bytes, not the number of characters, so it will depend on the text encoding used.</p>
http://stackoverflow.com/questions/298840/xml-serialization-issue-for-minoccurs/324517#3245171Answer by superfell for XML Serialization issue for minoccurssuperfell2008-11-27T19:26:13Z2008-11-27T19:26:13Z<p>in .NET WS for non-nullable types (in .NET) that are marked optional in the schema have an additional specified property generated for them that control if the element appears. Very annoyingly, the setter for the value does not set the additional specified flag, so you need do this.</p>
<pre><code>x.ToAmmount = 24.0f;
x.ToAmmountSpecified = true;
// etc for the rest of the poperties
</code></pre>
http://stackoverflow.com/questions/289380/need-assistance-with-diagnosing-soap-packet-problem-with-amazon-s3/324511#3245112Answer by superfell for Need assistance with diagnosing SOAP packet problem with Amazon S3superfell2008-11-27T19:21:59Z2008-11-27T19:21:59Z<p>If you want to send the data in the SOAP message itself, you need to use PutObjectInline, and not PutObject (which expects the data to be a DIME attachment).</p>
<p>see <a href="http://docs.amazonwebservices.com/AmazonS3/latest/index.html?SOAPPutObjectInline.html" rel="nofollow">PutObjectInline</a> in the s3 docs.</p>
http://stackoverflow.com/questions/323262/standard-web-services-v-secure-web-services/324497#3244974Answer by superfell for Standard web services v Secure web servicessuperfell2008-11-27T19:09:30Z2008-11-27T19:09:30Z<p>Unless you have a complex multi-hop scenario, then SSL is vastly more practical and interoperable than anything based on WS-Security or related specification</p>
http://stackoverflow.com/questions/307048/does-anyone-know-if-the-crossdomain-policy-file-at-salesforce-com-has-changed/324456#3244561Answer by superfell for Does anyone know if the crossdomain policy file at salesforce.com has changed?superfell2008-11-27T18:38:18Z2008-11-27T18:38:18Z<p>You have to make sure to load the policy from the /services tree, the default policy at the root won't help you. You need to load this policy https://www.salesforce.com/services/crossdomain.xml</p>
http://stackoverflow.com/questions/307066/does-anyone-know-of-a-good-salesforce-com-soql-resource/324445#3244451Answer by superfell for Does anyone know of a good salesforce.com SOQL resource?superfell2008-11-27T18:32:20Z2008-11-27T18:32:20Z<p>The Salesforce.com Web Services API Docs contains the reference docs for SOQL, has lots of samples.
[<a href="http://www.salesforce.com/us/developer/docs/api/index_Left.htm#StartTopic=Content/sforce_api_calls_soql.htm" rel="nofollow">http://www.salesforce.com/us/developer/docs/api/index_Left.htm#StartTopic=Content/sforce_api_calls_soql.htm</a>][1]</p>
<p>[1]: <a href="http://www.salesforce.com/us/developer/docs/api/index_Left.htm#StartTopic=Content/sforce_api_calls_soql.htm" rel="nofollow">http://www.salesforce.com/us/developer/docs/api/index_Left.htm#StartTopic=Content/sforce_api_calls_soql.htm</a> SOQL Reference</p>
http://stackoverflow.com/questions/339487/login-error-connecting-to-salesforce-com-from-flex/346780#346780Comment by superfell on Login error connecting to salesforce.com from Flexsuperfell2008-12-10T03:03:04Z2008-12-10T03:03:04ZRight, but the bug Dave mentioned is on the policy file, not where to send your login requests to.http://stackoverflow.com/questions/307048/does-anyone-know-if-the-crossdomain-policy-file-at-salesforce-com-has-changed/324456#324456Comment by superfell on Does anyone know if the crossdomain policy file at salesforce.com has changed?superfell2008-12-09T16:10:50Z2008-12-09T16:10:50Zactually, I am the Web Services architect at salesforce.com. there's no issues with the redirect code on www.http://stackoverflow.com/questions/339487/login-error-connecting-to-salesforce-com-from-flex/346780#346780Comment by superfell on Login error connecting to salesforce.com from Flexsuperfell2008-12-07T06:20:51Z2008-12-07T06:20:51ZYou need to login via www.salesforce.com, but you need to load the specific flex policy file, not the default one. (i put this in one of your other questions). The developer.force.com forums is a better place to ask questions <a href="http://community.salesforce.com/sforce?category.id=developers" rel="nofollow">community.salesforce.com/sforce?category.id=devel…</a>http://stackoverflow.com/questions/307048/does-anyone-know-if-the-crossdomain-policy-file-at-salesforce-com-has-changed/339479#339479Comment by superfell on Does anyone know if the crossdomain policy file at salesforce.com has changed?superfell2008-12-06T16:47:02Z2008-12-06T16:47:02ZAPI Login calls have to goto www.salesforce.com, that's why you're getting the invalid user response when you send it to na3. see my early answer about loading the right policy file for www